home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / ComponentFileString.wo / ComponentFileString.wos < prev   
Encoding:
Text File  |  1996-03-02  |  341 b   |  20 lines

  1. ////////////////////////
  2. //  ComponentFileString
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6. id componentName;
  7. id extension;
  8.  
  9. - filePathName
  10. {
  11.     id aFilePathName = [WOApp _pathForResource:componentName 
  12.         ofType:extension inComponentWithName:componentName];
  13.     return aFilePathName;
  14. }
  15.  
  16. - setFilePathName:aString
  17. {
  18.     return nil;
  19. }
  20.